home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1997
/
MacHack 1997.toast
/
Hacks
/
Hacks ’96
/
O Boy
/
Source
/
debug.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-06-21
|
149 b
|
8 lines
|
[
TEXT/R*ch
]
// debug.h
// #define DEBUG
#ifdef DEBUG
#define dassert( inCond ) {if( ! (inCond) ) Debugger();}
#else
#define dassert(assCond) ((void)0)
#endif